From c49c1a9ba32d2d2bb6e9a3522eb9123e780f739b Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 17 Aug 2016 10:10:10 -0400 Subject: [PATCH] Revert to previous semver version. As it turns out, people were taking advantage of bugginess in semver, so we can't do this upgrade yet. Fixes #3001 --- Cargo.lock | 20 ++++++++------------ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3846a923..401272aa4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,7 +26,7 @@ dependencies = [ "openssl 0.7.14 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)", - "semver 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "semver 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "tar 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "term 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -356,6 +356,11 @@ dependencies = [ "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "nom" +version = "1.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "num" version = "0.1.34" @@ -510,19 +515,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "semver" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "semver-parser 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "semver-parser" -version = "0.6.0" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.1.73 (registry+https://github.com/rust-lang/crates.io-index)", + "nom 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index e3c454a05..666cb2d4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ miow = "0.1" num_cpus = "1.0" regex = "0.1" rustc-serialize = "0.3" -semver = "0.4" +semver = "0.2.3" tar = { version = "0.4", default-features = false } tempdir = "0.3" term = "0.4.4" -- 2.30.2